ALL USERS ARE INVITED TO CREATE CONTENT! please follow the steps here
Welcome to the ABAP Development Wiki Space.
Disclaimer: Content Accuracy is assured as much as possible. Discretion advised.
New Support Channel: Ask an Expert Peer
SAP Support has extended its services for you and has launched the new support channel option Ask an Expert Peer at the end of January.
Ask an Expert Peer is offered in a limited feature trial for select products and lets you collaborate on your technical, product-related questions – one-on-one, with a qualified and approved expert outside of SAP. This way, you benefit from industry insights, along with an experienced perspective about your question. This channel is designed to deliver fast issue resolution for your basic inquiries and how-to questions
For details, please check this blog.
Space Editor:
| Julia Song
Moderators:
| Sebastian Arnold |
SAP Community Topic Page:
SAP Community Tags:
https://www.sap.com/community/tag.html?id=833755570260738661924709785639136
ABAP Technology and Runtime Environment
Here you can find information about ABAP programming as well as various kinds of ABAP Technologies(ALV, Smartforms, Data Transfer, User Interfaces.eg).
The rich set of integrated ABAP testing and analysis tools ensure functional and formal correctness of ABAP code, guarantee quality and robustness and offer best support for custom code migration to SAP S/4HANA:
| ATC/SCI/SLIN.eg |
| ST12/ST05/SE30.eg |
| Memory Inspector |
| eCATT |
Here you can find any kind of topics related to ABAP Server communication. In particular, the ABAP Connectivity Wiki covers the areas of
|
|
SAP Cloud Platform Cloud Connector SAP Java Connector (SAP JCo) SAP Java Resource Adapter (SAP JRA) (NetWeaver) RFC SDK SAP Business Connector (SAP BC) SAP .Net Connector (SAP NCo) SAP ABAP Connector (SAP ACo) |
|
| |
|
| |
|
|
In other words: it is dedicated to all core technologies that connect an ABAP server to any other system (ABAP or non-ABAP) directly or over the internet.
SAP Cloud Platform ABAP Environment Community page.
SAP Cloud Platform ABAP Environment is SAP's Platform as a Service (PaaS) offering for ABAP development which enables developers to leverage their traditional on-premise ABAP know-how to develop and run ABAP applications in the SAP Cloud Platform, either as extension to SAP software or as standalone applications.
36 Comments
Unknown User (107nv6xe7)
can someone explain what this picture represents?
Unknown User (n8dtqv7)
how to create an interactive report for scrap details of production planning and
amount of time.wat is scrap details
Anonymous
Can anyone tell me that how to test macro(hr-abap) to check the output just like we are testing function module using se37?
Unknown User (f7agl2t)
does anyone understand the image on this wiki space? It does not seem to make sense. Please explain and potentially move it were it belongs.
M.
Beena Praveen
How to change an ABAP program PBS enabled?
Unknown User (98hf74ya)
how does an abaper updates the data into the tables which he creates?
Unknown User (inv8i23)
Can anyone please let me know how to install ABAP 4.6 on my own machine?
Unknown User (pri2y4q)
please sdn users help me.... i am staying at bangalore and i need a real time person who personally teaching abap general along with advanced topic like ale/idoc,bapi,badi etc...... here the institute are taking too much money and is of no use if you know such person or if you can find plz let me know on my no 09379143453 or send me a mail at biswajitpradhan636@gmail.com
thanks
waiting for your reply and hope to get a good teacher
Former Member
Why can I not add a wikii ,but I can add last year?
Sandra Rossi
To Jack Wu : wiki became a semi-closed wiki since June 17th, see https://weblogs.sdn.sap.com/pub/wlg/14712
Unknown User (1010gtw35)
what is sub type in workflow?
Unknown User (f2x7tzd)
hi i want to write the certification exam for abap the exam code is C_TAW12_70 can any one send the material and faq links please thanks
Unknown User (101ejdv5m)
can anyone tell me that is t possible to store multiple vales in single field in database table in abap???
like column_name = qualification
values B-Tech
12th
10th
Unknown User (ake0y4m)
can anyone know hoe to create alv using blocked list ?
Former Member
how to provide coloumn wise heading in alv report?
example like
ebeln 3000008
netpr 50000
matnr 1000
Sreenivas Pachva
hi sap all
could you explain anyone what is sapruby ( i heard this one in SAP ByD) is it normal ruby language or sap introduced any new concepts in this one? plzz help me out..
Gregor Wolf
Hello,
you can find the Blue Ruby project at https://cw.sdn.sap.com/cw/groups/blue-ruby.
Best regards
Gregor
Unknown User (krs56fv)
earch engine optimization India is a highly developed industry, which is also due to the fact that India is also one of the leading countries in the world in terms of Information Technology. We are able to produce the highest quality SEO services in India, and we even go as far as designing and creating websites for our clients.
SEO Agency
Unknown User (iwk3onv)
Hi,
Can anyone tell me how to implement BAdis.
Thanks & Regards
Unknown User (iwk3onv)
Unknown User (ueh6kxv)
how to post a new question in forums
Unknown User (nvqjp7x)
hi,
i want to save data in ztableduring run-time....can anyone plz help m..
Syambabu Allu
it's very help full Blog
Thank's
Syam
Unknown User (jco70hx)
data v_lines type i.
describe table it_tab lines _lines.
AT USER-COMMAND.
IF SY-UCOMM 'DELETE'.
d0 v_lines times.
read line sy-index field value chk.
if chk = 'X'.
delete it_tab from wa_itab.
clear wa_itab.
endif.
enddo.
MY PROBLEM IS CHK = 'X'. NOT checking the condition.
can any one help me please.
Unknown User (995jqhyz)
hi
i hv used one of fm i.e F4IF_INT_TABLE_VALUE_REQUEST, requirement is on selection screen thr r two fields s_matnr n s_werks when i enter any any value in s_matnr and moves to s_werks and press f4 it should show value help corresponding to value enter in s_matnr. but im nt getting dis. dis is code please help
TYPES: BEGIN OF i_marc,
matnr TYPE marc-matnr,
werks TYPE marc-werks,
END OF i_marc.
DATA: it_marc TYPE STANDARD TABLE OF i_marc INITIAL SIZE 0,
wa_marc TYPE i_marc.select-options s_matnr for mara-matnr.
data :it_return type STANDARD TABLE OF DDSHRETVAL,
wa_return like line of it_return.
parameters: s_werks type marc-werks.
at selection-screen on value-request for s_werks.
select matnr werks from marc into table it_marc where matnr in s_matnr.
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
* DDIC_STRUCTURE = ' '
RETFIELD = 'WERKS'
* PVALKEY = ' '
* DYNPPROG = ' '
* DYNPNR = ' '
* DYNPROFIELD = ' '
* STEPL = 0
* WINDOW_TITLE =
* VALUE = ' '
VALUE_ORG = 'S'
* MULTIPLE_CHOICE = ' '
* DISPLAY = ' '
* CALLBACK_PROGRAM = ' '
* CALLBACK_FORM = ' '
* MARK_TAB =
* IMPORTING
* USER_RESET =
TABLES
VALUE_TAB = it_marc
* FIELD_TAB =
RETURN_TAB = it_return
* DYNPFLD_MAPPING =
EXCEPTIONS
PARAMETER_ERROR = 1
NO_VALUES_FOUND = 2
OTHERS = 3
.
.
READ TABLE it_return into wa_return index 1.
s_werks = wa_return-fieldval.
Unknown User (onr6wcy)
Dear experts,
I have a query on background jobs in BDC session method, i.e. every day night jobs need to run in background, while I am checking next day all data is updated to data base, but my query is I have requirement like error records file should be at the front end.
How can I achieve this please help me.
Former Member
Hi
I want to develop a program which is start with user logon(for a specific user)
then force user to enter some descriptions
ı will update a dtable which contains user logon time logonoff time user name and descriptions -with logon-
many people may enter with same user but it has to work separately.
Here is my questions have can ı describe user log off time and how can make program to start with user logon
Unknown User (zuij5h2)
Hi,
How to create monthly mass balance procedure in unidentified loss and % of unidentified loss using alv list . pls let me share.
Unknown User (aa8t2hc)
Hi ,
i have two internal tables and two grid displays.
in selection screen i have two requiremnets one is based on customer no and another is sales order.
the requirement is if i select customer no then it has to disply customer no.
if i select sales order then it has to display sales order
i tried it but im getting the result customer no sales order but everytime displaying customer no first.
plz help me
Unknown User (aa8t2hc)
Hi ,
i have two internal tables and two grid displays.
in selection screen i have two requiremnets one is based on customer no and another is sales order.
the requirement is if i select customer no then it has to disply customer no.
if i select sales order then it has to display sales order
i tried it but im getting the result customer no sales order but everytime displaying customer no first.
plz help me
Unknown User (104ed090b)
Hi,
I want to know the alternative for RFC Destination.
How can i get the connectivity from an ABAP system to a Java system without using RFC Destination.
Thanks for your help.
Best Regards,
Lata
Unknown User (104ed090b)
Hi,
I want to know the alternative for RFC Destination.
How can i get the connectivity from an ABAP system to a Java system without using RFC Destination.
Thanks for your help.
Best Regards,
Lata
Gregor Wolf
Dear Lata,
please checkout the Page ABAP Connectivity Home Old. In Addition to WebServices you can have a look into SAP NetWeaver Gateway.
Best regards
Gregor
Devraj Bardhan
Please add a section to include Non SAP Press books as well
Jyothi Reddy
Hi every one,
I have some doubt regarding MD04 transaction.
For this transaction i want modify standard screen(i.e making visible to a field i.e Stock in Transit*(mdez-tramg)*, i.e in the standard screen that field already is there i.e in the table control .
so how to make that field as visible, means any enhancement is there for MD04 Transaction for this requirement.
PlZ help me.
Regards,
Jyothi
Caroline Annabel
Why can't I bookmark+ ABAP Development and Programming +page?
Vishal Goenka
AUTHORITY-CHECK OBJECT 'M_EINK_FRG' not working....
Any suggestions ??